home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue62 / system / FrmMain.dfm < prev    next >
Encoding:
Text File  |  2000-09-08  |  1.3 KB  |  68 lines

  1. object Form1: TForm1
  2.   Left = 191
  3.   Top = 141
  4.   Width = 416
  5.   Height = 477
  6.   Caption = 'CAB Demo'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   OnCreate = FormCreate
  15.   OnDestroy = FormDestroy
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object FileCount: TLabel
  19.     Left = 8
  20.     Top = 8
  21.     Width = 3
  22.     Height = 13
  23.   end
  24.   object Button1: TButton
  25.     Left = 8
  26.     Top = 416
  27.     Width = 75
  28.     Height = 25
  29.     Caption = 'Open...'
  30.     TabOrder = 0
  31.     OnClick = Button1Click
  32.   end
  33.   object FileList: TListView
  34.     Left = 8
  35.     Top = 32
  36.     Width = 377
  37.     Height = 377
  38.     Color = 8404992
  39.     Columns = <
  40.       item
  41.         Caption = 'FileName'
  42.         Width = 100
  43.       end
  44.       item
  45.         Caption = 'Uncompressed size'
  46.         Width = 130
  47.       end
  48.       item
  49.         Caption = 'Timestamp'
  50.         Width = 100
  51.       end>
  52.     Font.Charset = DEFAULT_CHARSET
  53.     Font.Color = clYellow
  54.     Font.Height = -11
  55.     Font.Name = 'MS Sans Serif'
  56.     Font.Style = []
  57.     ParentFont = False
  58.     TabOrder = 1
  59.     ViewStyle = vsReport
  60.   end
  61.   object OpenDialog: TOpenDialog
  62.     DefaultExt = 'CAB'
  63.     Filter = 'CAB Files (*.CAB)|*.CAB'
  64.     Left = 96
  65.     Top = 416
  66.   end
  67. end
  68.